Contents | Index | < Browse | Browse >

LETTERiostreamULETTER A streamclass for I/O operations.

Overview
#include <iostream.h>
class iostream : private virtual ios, public ostream, public istream {
public:
iostream(streambuf *);
protected:
iostream();
};

Portability
AT&T Release 2 streams library

Description
By linking the two classes ostream and istream this class forms the base for all bidirectional stream classes.

Constructors
iostream::iostream(streambuf *);
Initializes the stream class and binds the specified buffer.

iostream::iostream();
Initializes the stream class without a buffer.

See also
ios , ostream , istream , fstream